home *** CD-ROM | disk | FTP | other *** search
/ Cream of the Crop 20 / Cream of the Crop 20 (Terry Blount) (1996).iso / comm / cpt152.zip / CPT-S152.ZIP / CPT-MAKE.BAT < prev    next >
DOS Batch File  |  1996-05-16  |  776b  |  25 lines

  1. ECHO.
  2. ECHO * This batch file compiles all CPT source code files, using Borland Pascal.
  3. ECHO.
  4. REM ........................... Compile CPT-Fix ...
  5. tpc -q cpt-fix.pas
  6. REM ........................... Compile units ...
  7. tpc -q arcid.pas
  8. tpc -q heapman.pas
  9. tpc -q numdays.pas
  10. REM ........................... Compile CPT ...
  11. tpc -q cpt_code.pas
  12. tpc -q cpt.pas
  13. REM ........................... Compile CPT-p ...
  14. copy cpt.pas cpt-p.pas >nul
  15. bpc -q -b -cp cpt-p.pas /dDPMI
  16. REM ........................... Compile CPT-Sort ...
  17. copy cpt-st.pas cpt-sort.pas >nul
  18. tpc -q cpt-sort.pas /dSORT
  19. del cpt-sort.pas >nul
  20. REM ........................... Compile CPT-Stat ...
  21. copy cpt-st.pas cpt-stat.pas >nul
  22. tpc -q cpt-stat.pas /dSTAT
  23. del cpt-stat.pas >nul
  24. del cpt-p.pas >nul
  25.